read text from docx in php

80

read text from docx in php -

<?php
include ('Doc2Txt.php');
$docObj = new Doc2Txt('test.docx');
$txt = $docObj->convertToText();
echo $txt;

Comments

Submit
0 Comments